home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / bbs / scuba35.zip / ERROR.QB < prev    next >
Text File  |  1996-11-08  |  5KB  |  117 lines

  1.  
  2.                             QuickBasic Error codes
  3.                       DoorFrame uses the QB error codes.
  4.  ---------------------------------------------------------------------------
  5.  
  6.  2   Syntax error                       61   Disk full
  7.  5   Illegal function call              62   Input past end of file
  8.  6   Overflow                           63   Bad record number
  9.  7   Out of memory                      64   Bad file name
  10. 11   Division by zero                   67   Too many files
  11. 13   Type mismatch                      68   Device Unavailable
  12. 24   Device timeout                     69   Comm-buffer overflow
  13. 25   Device fault                       70   Permission denied
  14. 52   Bad file name or number            71   Disk not ready
  15. 53   File not found                     72   Disk media error
  16. 55   File already open                  74   Rename across disk
  17. 57   Device I/O error                   75   Path/File access error
  18. 58   File already exists                76   Path not found
  19. 59   Bad record length
  20.  
  21.  
  22.     Here's a listing of SOME of the most common errors that have been
  23.   occurring...Mostly due to NOT reading the DOC's carefully...
  24.  
  25.     **** ERROR #52 - Bad file name or number
  26.          ERROR #64 - Bad file name
  27.  
  28.     CAUSE: Lines 8 & 9 in the .CFG file are not setup correctly.
  29.  
  30.     CURE: These lines are specifying the path, type, name of the bulletins
  31.           if any that you wish the door to create.
  32.  
  33.        *  Wildcat! Users (any version)
  34.           If you are running a Wildcat! BBS (any version), the basic setup
  35.           for these lines can be similar to the following:
  36.  
  37.           Line 8 - C:\BBS\BULL\BULL#.BBS  <- Bulletin w/@codes is created
  38.           Line 9 -                        <- Leave Blank
  39.           Line 10 - WC                    <- Specifies WC @codes
  40.  
  41.        *  PCBoard Users
  42.           If you are running a PCBoard BBS, then you can setup these lines
  43.           similar to the following:
  44.  
  45.           Line 8 - C:\BBS\BULL\BULL#.ANS  <- Color Bulletin path and name
  46.           Line 9 - C:\BBS\BULL\BULL#.ASC  <- Mono Bulletin path and name
  47.           Line 10 - PCB                   <- Specifies PCBoard Color codes
  48.  
  49.        *  General
  50.           If you are running a BBS that creates ANS/ASC type bulletins then
  51.           you can use something like...
  52.  
  53.           Line 8 - C:\BBS\BULL\BULL#.ANS  <- Color Bulletin path and name
  54.           Line 9 - C:\BBS\BULL\BULL#.ASC  <- Mono Bulletin path and name
  55.           Line 10 -                       <- Leave Blank to create ANS/ASC
  56.                                              type bulletins.
  57.  
  58.           Note: If your BBS does not display the color bulletin with the
  59.           extension name of .ANS, but will if it's .SCR just change the
  60.           extension to .SCR. On the same note, if it doesn't display the
  61.           Mono bulletin with the extension name of .ASC, then put the name
  62.           of the extension of what it will display.
  63.  
  64.     EXCEPTION: NONE
  65.  
  66.  
  67.     **** ERROR #53 - File not found
  68.          ERROR #64 - Bad file name
  69.          ERROR #75 - Path/File access error
  70.          ERROR #76 - Path not found
  71.  
  72.     CAUSE: NOT having either the correct path and/or filename for the door
  73.            drop file...(ie where the program can find the DOOR.SYS file).
  74.  
  75.     CURE:  Make sure that you have the EXACT Path AND Name of the drop file
  76.            that your BBS Software requires to run.
  77.  
  78.     EXCEPTION: NONE
  79.  
  80.  
  81.     **** ERROR #62 - Input past end of file
  82.          ERROR #63 - Bad record number
  83.  
  84.     CAUSE: NOT having enough lines in the .CFG file. There's either too
  85.            many or not enough lines in the .CFG file.
  86.  
  87.     CURE:  Make sure that ALL the lines that the .CFG requires is what it
  88.            actually has. Also double check to make sure that one of the
  89.            lines was not inadvertently deleted when it was being edited.
  90.  
  91.     EXCEPTION: NONE
  92.  
  93.  _____________________________________________________________________________
  94.  
  95.   If you are operating on 486 computer and getting a "keyboard timeout", you
  96.   will need to set the following environment variable in your AUTOEXEC.BAT.
  97.  
  98.   SET NO87=ON
  99.  
  100.   This will inform DoorFrame to use a different timing routine. If you are
  101.   operating under DESQview/X, you must flag the MATH COPROCESSOR as being ON.
  102.  
  103.   If the door seems to operate fine on the BBS end but the remote cannot
  104.   receive or receives garbled info, check and make sure you are passing the
  105.   correct IRQ to the door.  Comm 1 and 2 are standard and as such you do
  106.   not need to pass the IRQ to them.
  107.  
  108.   If you are operating under DESQview, you will need to load DVANSI in
  109.   EACH window.
  110.  
  111.   Unless you are using a Digi-board and need a fossil driver, DO NOT use
  112.   the "/FD" switch on the command line.  The doors do not need a fossil
  113.   driver to operate on serial ports.
  114.  
  115.  
  116.                                -= END =-
  117.